home *** CD-ROM | disk | FTP | other *** search
/ Personal Computer World 2007 September / PCWSEP07.iso / Software / Linux / Linux Mint 3.0 Light / LinuxMint-3.0-Light.iso / casper / filesystem.squashfs / usr / include / libpurple / version.h < prev    next >
Encoding:
C/C++ Source or Header  |  2007-05-04  |  1.8 KB  |  58 lines

  1. /**
  2.  * @file version.h Purple Versioning
  3.  *
  4.  * purple
  5.  *
  6.  * Purple is the legal property of its developers, whose names are too numerous
  7.  * to list here.  Please refer to the COPYRIGHT file distributed with this
  8.  * source distribution.
  9.  *
  10.  * This program is free software; you can redistribute it and/or modify
  11.  * it under the terms of the GNU General Public License as published by
  12.  * the Free Software Foundation; either version 2 of the License, or
  13.  * (at your option) any later version.
  14.  *
  15.  * This program is distributed in the hope that it will be useful,
  16.  * but WITHOUT ANY WARRANTY; without even the implied warranty of
  17.  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
  18.  * GNU General Public License for more details.
  19.  *
  20.  * You should have received a copy of the GNU General Public License
  21.  * along with this program; if not, write to the Free Software
  22.  * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA  02111-1307  USA
  23.  */
  24. #ifndef _PURPLE_VERSION_H_
  25. #define _PURPLE_VERSION_H_
  26.  
  27. #define PURPLE_MAJOR_VERSION (2)
  28. #define PURPLE_MINOR_VERSION (0)
  29. #define PURPLE_MICRO_VERSION (0)
  30.  
  31. #define PURPLE_VERSION_CHECK(x,y,z) ((x) == PURPLE_MAJOR_VERSION && \
  32.                                      ((y) < PURPLE_MINOR_VERSION || \
  33.                                       ((y) == PURPLE_MINOR_VERSION && (z) <= PURPLE_MICRO_VERSION)))
  34.  
  35. #ifdef __cplusplus
  36. extern "C" {
  37. #endif
  38.  
  39. /**
  40.  * Checks that the libpurple version is compatible with the requested
  41.  * version
  42.  *
  43.  * @param required_major: the required major version.
  44.  * @param required_minor: the required minor version.
  45.  * @param required_micro: the required micro version.
  46.  *
  47.  * @return NULL if the versions are compatible, or a string describing
  48.  *         the version mismatch if not compatible.
  49.  */
  50. const char *purple_version_check(guint required_major, guint required_minor, guint required_micro);
  51.  
  52. #ifdef __cplusplus
  53. }
  54. #endif
  55.  
  56. #endif /* _PURPLE_VERSION_H_ */
  57.  
  58.